<?php $FourDigitRandomNumber = mt_rand(1111,9999); echo $FourDigitRandomNumber; ?>
// $min and $max are optional rand($min,$max);
$digits = 3; echo rand(pow(10, $digits-1), pow(10, $digits)-1);